home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu086.dms / pu086.adf / clibs / defaults.c < prev    next >
C/C++ Source or Header  |  1990-12-04  |  644b  |  24 lines

  1. /*
  2.   (c) 1990 S.Hawtin.
  3.   Permission is granted to copy this file provided
  4.    1) It is not used for commercial gain
  5.    2) This notice is included in all copies
  6.    3) Altered copies are marked as such
  7.  
  8.   No liability is accepted for the contents of the file.
  9.  
  10.   defaults.c    within        Public Domain c.lib
  11.  
  12. */
  13.  
  14. /* The variables that determine the default behaviour of 'C' programs */
  15.  
  16. /* The default window to start from */
  17. char *_WBConsole="con:20/20/400/100/NorthC 1.2 Program";
  18.  
  19. /* Set true if want to have stdout and stderr unbuffered */
  20. int stdoutUnbuffered = 0;
  21.  
  22. /* Set true if you want interrupts to be checked for */
  23. int _WithIntrCheck = -1;
  24.